7e2b92ff6cdc839832d514c3a41e716051e558cf,wicket/src/java/wicket/Session.java,Session,getAttributeNames,#,805

Before Change


	 */
	protected final List getAttributeNames()
	{
		return getSessionStore().getAttributeNames(RequestCycle.get().getRequest());
	}

	/**

After Change


	 */
	protected final List getAttributeNames()
	{
		RequestCycle cycle = RequestCycle.get();
		if (cycle != null)
		{
			return getSessionStore().getAttributeNames(cycle.getRequest());
		}
		return null;
	}

	/**